home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / AppDomainLoader / TestPkg.dpk < prev    next >
Encoding:
Text File  |  2004-10-22  |  2.7 KB  |  83 lines

  1. package TestPkg;
  2.  
  3. {$ALIGN 0}
  4. {$ASSERTIONS ON}
  5. {$BOOLEVAL OFF}
  6. {$DEBUGINFO OFF}
  7. {$EXTENDEDSYNTAX ON}
  8. {$IMPORTEDDATA ON}
  9. {$IOCHECKS ON}
  10. {$LOCALSYMBOLS OFF}
  11. {$LONGSTRINGS ON}
  12. {$OPENSTRINGS ON}
  13. {$OPTIMIZATION ON}
  14. {$OVERFLOWCHECKS OFF}
  15. {$RANGECHECKS OFF}
  16. {$REFERENCEINFO ON}
  17. {$SAFEDIVIDE OFF}
  18. {$STACKFRAMES OFF}
  19. {$TYPEDADDRESS OFF}
  20. {$VARSTRINGCHECKS ON}
  21. {$WRITEABLECONST OFF}
  22. {$MINENUMSIZE 1}
  23. {$IMAGEBASE $400000}
  24. {$IMPLICITBUILD OFF}
  25.  
  26. requires
  27.   System, System.Windows.Forms;
  28.  
  29. contains
  30.   TestPkgClass in 'TestPkgClass.pas';
  31.  
  32. [assembly: AssemblyTitle('')]
  33. [assembly: AssemblyDescription('')]
  34. [assembly: AssemblyConfiguration('')]
  35. [assembly: AssemblyCompany('')]
  36. [assembly: AssemblyProduct('')]
  37. [assembly: AssemblyCopyright('')]
  38. [assembly: AssemblyTrademark('')]
  39. [assembly: AssemblyCulture('')]
  40.  
  41. //
  42. // Version information for an assembly consists of the following four values:
  43. //
  44. //      Major Version
  45. //      Minor Version 
  46. //      Build Number
  47. //      Revision
  48. //
  49. // You can specify all the values or you can default the Revision and Build Numbers 
  50. // by using the '*' as shown below:
  51.  
  52. [assembly: AssemblyVersion('1.0.*')]
  53.  
  54. //
  55. // In order to sign your assembly you must specify a key to use. Refer to the 
  56. // Microsoft .NET Framework documentation for more information on assembly signing.
  57. //
  58. // Use the attributes below to control which key is used for signing. 
  59. //
  60. // Notes: 
  61. //   (*) If no key is specified, the assembly is not signed.
  62. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  63. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  64. //       a key.
  65. //   (*) If the KeyFile and the KeyName values are both specified, the 
  66. //       following processing occurs:
  67. //       (1) If the KeyName can be found in the CSP, that key is used.
  68. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  69. //           in the KeyFile is installed into the CSP and used.
  70. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  71. //       When specifying the KeyFile, the location of the KeyFile should be
  72. //       relative to the project output directory. For example, if your KeyFile is
  73. //       located in the project directory, you would specify the AssemblyKeyFile 
  74. //       attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  75. //       directory is the project directory (the default).
  76. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  77. //       documentation for more information on this.
  78. //
  79. [assembly: AssemblyDelaySign(false)]
  80. [assembly: AssemblyKeyFile('')]
  81. [assembly: AssemblyKeyName('')]
  82. end.
  83.